IsString
Returns true if the CDocBuilderValue
object is a string.
Please note, that for the
.docbuilder
file theCDocBuilderValue.IsString
method is not used.
Syntax
HRESULT IsString([out, retval] VARIANT_BOOL* result);
Parameters
Parameter | Type | Description |
---|---|---|
result | VARIANT_BOOL* | Specifies whether the CDocBuilderValue object is a string. |
Example
COM
CoInitialize(NULL);
IONLYOFFICEDocBuilder* oBuilder = NULL;
IONLYOFFICEDocBuilderContext* oContext = NULL;
IONLYOFFICEDocBuilderValue* oGlobal = NULL;
VARIANT_BOOL b;
oBuilder->Initialize();
oBuilder->GetContext(&oContext);
oContext->GetGlobal(&oGlobal);
oGlobal->IsString(&b);
oBuilder->Dispose();